home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 February / PCWorld_2002-02_cd.bin / Software / Komercni / Gopas / pwp1 / cz8002as.dcr / Graphics plus_134.ls < prev    next >
Encoding:
Text File  |  2002-01-14  |  439 b   |  27 lines

  1. on enterFrame
  2.   repeat while the stillDown
  3.     cursor(200)
  4.     set the locH of sprite 11 to the mouseH
  5.     set the locV of sprite 11 to the mouseV
  6.     updateStage()
  7.     if rollover(10) then
  8.       set the blend of sprite 10 to 100
  9.     else
  10.       set the blend of sprite 10 to 0
  11.     end if
  12.     updateStage()
  13.   end repeat
  14.   cursor(-1)
  15. end
  16.  
  17. on mouseUp
  18.   if rollover(10) then
  19.     Advance()
  20.   else
  21.   end if
  22. end
  23.  
  24. on exitFrame
  25.   go(the frame)
  26. end
  27.